home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DBVGAL17.ARJ / DEMOS.ARJ / L28.ASM next >
Assembly Source File  |  1992-01-25  |  445b  |  23 lines

  1.         ;       name l28
  2. _TEXT   segment byte public 'CODE'
  3.         org 100h
  4.         assume  cs:_TEXT
  5. @start:
  6.         mov     ax,1202h
  7.         mov     bl,30h
  8.         int     10h
  9.         cmp     al,12h
  10.         jne     @out
  11.  
  12.         mov     ax,0003h
  13.         int     10h
  14.         mov     ax,1111h
  15.         mov     bl,00
  16.         int     10h
  17. @out:
  18.         mov     ax,4c00h
  19.         int     21h
  20. _TEXT   ends
  21.         end     @start
  22.  
  23.